home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Aminet 41
/
Aminet 41 (2001)(Schatztruhe)[!][Feb 2001].iso
/
Aminet
/
util
/
libs
/
MMULib.lha
/
MMULib
/
Contributions
/
Sashimi
/
Source
/
SafeRawPutChar.asm
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS
UTF-8
Wrap
Assembly Source File
|
1998-09-12
|
389 b
|
26 lines
*
* $Id: SafeRawPutChar.asm 1.1 1998/09/11 22:03:16 olsen Exp olsen $
*
* Sashimi -- intercepts raw serial debugging output on your own machine
*
* Written by Olaf `Olsen' Barthel <olsen@sourcery.han.de>
* Public Domain
*
* :ts=8
*
section text,code
xref _NewRawPutChar
xdef _SafeRawPutChar
_SafeRawPutChar:
movem.l a0-a1,-(sp)
bsr _NewRawPutChar
movem.l (sp)+,a0-a1
rts
end